home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000073_news@columbia.edu _Mon Oct 16 16:09:45 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA25695
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 16 Oct 2000 16:09:37 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA05485
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 16 Oct 2000 16:09:36 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA26106
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 16 Oct 2000 14:43:02 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Steve" <steve@baus-systems.com>
  13. Subject: Re: No Carrier
  14. Message-ID: <%ZHG5.54658$bI6.1914001@news1.giganews.com>
  15. Organization: Giganews.Com - Premium News Outsourcing
  16. Date: Mon, 16 Oct 2000 18:42:04 GMT
  17. To: kermit.misc@columbia.edu
  18.  
  19. Frank,
  20.  
  21. Sorry for the delay...
  22.  
  23. Here is what we are trying to accomplish with K95.
  24.  
  25. We currently have DOS clients that on a regular basis, communicate with a
  26. host PC to exchange files.  The clients and the host are running DOS apps
  27. that call Kermit 3.15.  We would like to upgrade the host to K95 to allow
  28. for multiple transfers at one time on one PC.
  29.  
  30. Here is what we are doing:
  31. The host waits in server mode for a client to connect.  The clients connects
  32. either through a serial cable or modem and sends across a file that contains
  33. a field that tells the host which client this is then the client sends a
  34. Finish command to kick the host out of server mode.  The host opens the file
  35. to get the client ID then changes to a directory containing files specific
  36. to that client that are waiting to go to the client, compresses the files
  37. and sends across the compressed file.  The host then goes into server mode
  38. waiting for the clients compressed data file.  After the client sends the
  39. file it sends a Finish command and the host uncompresses the file and
  40. processes the data, copying files contained within the compressed data file
  41. to the appropriate places.  The host then goes back into server mode waiting
  42. for the next client.  One other important part is from time to time a phone
  43. line can go bad in the middle of a transfer and therefore for example the
  44. host may be waiting for the clients compress data file while a new client
  45. may be connecting and sending the client ID file.  We refer to this as the
  46. client and the host being out of synch.  To resolve this, when the client
  47. first connects, it sends 2 Finish commands which 100% guarantees that the
  48. host will be at the "waiting for client ID" section of the host app as that
  49. part of code on the host looks something like:
  50. Do While True
  51.  Kermit server
  52.  If File(ClientID)
  53.   Exit Do
  54.  End If
  55. End Do
  56.  
  57. We would like to upgrade the host app to K95 and have a VB app that seems to
  58. work fine except for communicating over the modem.  When we send the Finish
  59. from the client, it drops the line and we get No Carrier on the client.  If
  60. we could get around this, that should solve our issue.  I am not sure
  61. changing the software on the client is a realistic option as updating the
  62. clients is a major hassle.  We can change the modem initialization string on
  63. the clients so that is an option.
  64.  
  65. Any thoughts?
  66. Steve Baus
  67.  
  68.  
  69.